home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / yacy_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  59 lines

  1. #
  2. # This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. # Ref: Donato Ferrante <fdonato@autistici.org>
  4. #
  5. # This script is released under the GNU GPL v2
  6.  
  7. if(description)
  8. {
  9.   script_id(16058);
  10.   script_bugtraq_id(12104);
  11.   script_version("$Revision: 1.2 $");
  12.   
  13.   script_name(english:"YACY Peer-To-Peer Search Engine XSS");
  14.  
  15.  desc["english"] = "
  16. The remote host runs YACY, a Java Freeware Open-Source Caching 
  17. HTTP Proxy and Global P2P-Based Search Engine.
  18.  
  19. The remote version of this software is vulnerable to multiple cross-site 
  20. scripting due to a lack of sanitization of user-supplied data.
  21.  
  22. Successful exploitation of this issue may allow an attacker to use the
  23. remote server to perform an attack against a third-party user.
  24.  
  25. Solution: Upgrade to the latest version of this software
  26. Risk factor : Medium";
  27.  
  28.   script_description(english:desc["english"]);
  29.   script_summary(english:"Checks YACY Peer-To-Peer Search Engine XSS");
  30.   script_category(ACT_GATHER_INFO);
  31.   script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  32.   script_family(english:"CGI abuses : XSS");
  33.   script_require_ports("Services/www", 8080);
  34.   script_dependencie("cross_site_scripting.nasl");
  35.   exit(0);
  36. }
  37.  
  38. #the code
  39.  
  40. include("http_func.inc");
  41. include("http_keepalive.inc");
  42.  
  43. port = get_http_port(default:8080);
  44. if ( ! get_port_state(port))exit(0);
  45. if ( ! can_host_php(port:port) ) exit(0);
  46.  
  47. if ( get_kb_item("www/" + port + "/generic_xss") ) exit(0);
  48.  
  49. buf = http_get(item:"/index.html?urlmaskfilter=<script>foo</script>", port:port);
  50. r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1);
  51. if( r == NULL )exit(0);
  52.  
  53. if(egrep(pattern:"<title>YACY: Search Page</title>.*<script>foo</script>", string:r))
  54. {
  55.   security_warning(port);
  56.   exit(0);
  57. }
  58.